题解列表

筛选

数组+循环

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; double x,y[100],j,k; scanf("%d",&n); scanf("%lf %……

(c语言)详细解读

摘要:解题思路:注意事项:参考代码:#include"stdio.h"int main(){     char Char;     int line,row,control,read;    //行,列,符……

1761: 学习ASCII码

摘要:解题思路:爱要就抄注意事项:参考代码:#include<iostream> using namespace std; int main() {     cout<<"116 ?";     ……

A+B Problem题解

摘要:解题思路:无注意事项:无参考代码:#include<iostream>using namespace std;int main(){    int a,b;    while(cin>>a>>b)co……

编写题解 1046: [编程入门]自定义函数之数字后移

摘要:解题思路:注意事项:参考代码://有n个整数,使前面各数顺序向后移m个位置,最后m个数变成前面m个数。写一函数:实现以上功能,在主函数中输入n个数和输出调整后的n个数。 #include<stdio……