如何输出字符的ASCII值?

时间:2018-03-28 15:31:17

标签: c++

#include<upstream>

using namespace std;

void sortnom(int&x, int&y, int&z) {

  int m;

  if (x < y) {
    m = y;
    y = x;
    x = m;
  }

  if (x < z) {
    m = z;
    z = x;
    x = m;
  }

  if (y < z) {
    m = y;
    y = z;
    z = m;
  }
}

int main() {
  int x, y, z;
  cin >> x >> y >> z;
  sortnom(x,y,z);
  court << x << y << z;
}
  

|| === Build:在sd中调试(编译器:GNU GCC编译器)=== |   C:\ Users \ Dell \ Desktop \ sd \ main.cpp | 1 |致命错误:上游:没有这样的文件或目录   || ===构建失败:1个错误,0个警告(0分钟,0秒(秒))=== |

1 个答案:

答案 0 :(得分:1)

Fomat正确,你可能想要这个

public static void Register(HttpConfiguration config)
{
    config.EnableQuerySupport();
}

如何输出字符的ASCII值?我的代码中没有#include<iostream> using namespace std; void sortnom(int &x,int &y,int &z){ int m; if(x<y) { m=y; y=x; x=m; } if(x<z) { m=z; z=x; x=m; } if(y<z) { m=y; y=z; z=m; } } int main() { int x,y,z; cin>>x>>y>>z; sortnom(x,y,z); cout<<x<<y<<z; return 0; }

通常打印char的{​​{1}}值,您可以这样做

ASCII