题解列表

筛选

去掉空格C语言

摘要:解题思路:误打误撞,代码小白,望大神在评论区指点一二注意事项:参考代码:#include<stdio.h>int main(){       char d[81];       while(gets(……

三角形判断

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){     int a,b,c;     scanf("%d%d%d",&a,&b,&c);     if(a+b>……

1094: 字符串的输入输出处理

摘要:解题思路:注意事项:参考代码:n=int(input())for i in range(n):    print(input(),end=&#39;\n\n&#39;)while True:    t……

注意空格,好事多磨吧

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ cout << "  " << "Nine-by-nine Multi……