题解列表

筛选

1196: 去掉空格(7行)

摘要:解题思路:注意事项:c++多一行,就没用了参考代码:#include <stdio.h> int main(){     char ch;     while((ch = getchar()) ……

1042: [编程入门]电报加密

摘要:解题思路:注意事项:参考代码:#include <iostream> #include <string> using namespace std; int main() {     st……

1130: C语言训练-数字母

摘要:解题思路:注意事项:参考代码:#include <iostream> #include <string> using namespace std; int main() {     st……

c数字逆序输出

摘要:解题思路:两个数组注意事项:参考代码:#include<stdio.h>int main(){ int a[10]; int i,j; for(i=0;i<10;i++) { scanf("%d",&……