你可以给我解析一下你帮我解的那个程序吗,我不是很懂为什么要那么填啊#include "stdafx.h"#include "stdio.h"int _tmain(int argc, _TCHAR* argv[]){ int intNumbers[10],intChange; int i, j; bool bolMark = false; pri
来源:学生作业帮助网 编辑:作业帮 时间:2024/11/05 22:37:22
你可以给我解析一下你帮我解的那个程序吗,我不是很懂为什么要那么填啊#include "stdafx.h"#include "stdio.h"int _tmain(int argc, _TCHAR* argv[]){ int intNumbers[10],intChange; int i, j; bool bolMark = false; pri
你可以给我解析一下你帮我解的那个程序吗,我不是很懂为什么要那么填啊
#include "stdafx.h"
#include "stdio.h"
int _tmain(int argc, _TCHAR* argv[])
{
int intNumbers[10],intChange;
int i, j;
bool bolMark = false;
printf("Enter10 numbers:\n");
for (i = 0; i
你可以给我解析一下你帮我解的那个程序吗,我不是很懂为什么要那么填啊#include "stdafx.h"#include "stdio.h"int _tmain(int argc, _TCHAR* argv[]){ int intNumbers[10],intChange; int i, j; bool bolMark = false; pri
printf("The result of sorting:\n");从这句可推断出这个程序是关于排序的.然后我们再看for循环,怎样才能完成排序,ntChange= intNumbers[j]; intNumbers[j]= intNumbers[j - 1]; intNumbers[j- 1] = intChange;从这三条语句可看出操作的下标是j,所以条件中必然跟j相关,从而可得出intNumbers[j]intNumbers[j-1].